*{
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

#about{
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec{
  padding: 10px;
  height: 420px;
  width: 30%;
  background: repeating-linear-gradient(50deg,rgb(167, 0, 0),rgb(255, 0, 0),rgb(255, 128, 128),transparent 200px);
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
}


.img1{
  animation:img1 10s 0.5s infinite;
}

.img2{
  animation:img2 10s 0.5s infinite;
}

.img3{
  animation:img3 10s 0.5s infinite;
}

.img4{
  animation:img4 10s 0.5s infinite;
}

@keyframes img1{
  0%{
    width: 100%;
    height: 400px;
  }
  24%{
    width: 0px;
    height: 0px;
  }
  75%{
    width: 0px;
    height: 0px;
    
  }
  100%{
    width: 0px;
    height: 0px;

  }
}
@keyframes img2{
  0%{
    width: 0px;
    height:0px;
  }
  25%{
    width: 100%;
    height: 250px;
  }
  75%{
    width: 0px;
    height: 0px;
    
  }
  100%{
    width: 0px;
    height: 0px;

  }
}
@keyframes img3{
  0%{
    width: 0px;
    height: 0px;
  }
  25%{
    width: 0px;
    height: 0px;
  }
  75%{
    width: 100%;
    height: 250px;
    
  }
  100%{
    width: 0px;
    height: 0px;

  }
}
@keyframes img4{
  0%{
    width: 0px;
    height: 0px;
  }
  25%{
    width: 0px;
    height: 0px;
  }
  75%{
    width: 0px;
    height: 0px;
    
  }
  100%{
    width: 100%;
    height: 250px;

  }
}

.top{
  cursor: context-menu;
  background-color: rgb(184, 255, 104);
  display:flex;
  border-radius: 10px;
  padding: 0px 5px;
  flex-direction: column;
  justify-content: center;
  border: 2px solid black;
}

.para{
  cursor: context-menu;
  font-family: monospace;
  background-color: rgb(255, 230, 186);
  border-radius: 20px;
  font-size: 20px;
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 80%;
  height: 200px;
  align-content: center;
  /* border: 2px solid red; */
}

.para>p{
  margin-top: 3px;
}

.img{
  height: 200px;
  width: 250px;
  border-radius: 5px;
}

.container{
  cursor: context-menu;
  background-color: rgb(248, 184, 74);
  padding-bottom: 20px;
  border-radius: 30px;
  width: 90%;
  margin: 30px 70px;
  border: 2px solid purple;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Footer Section */

footer{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 35px;
  background-color: rgb(41, 41, 41);
  height: 100%;
 }

.footer{
  margin:5px;
  display: flex;
  cursor: context-menu;
  color: white;
  align-content: center;
  justify-content: center;
}

.footer a{
  color: #6868ff;
  display: inline;
  text-decoration: none;
}

.footer a:hover{
  color: #0c0cff;
  text-decoration: underline;
}

.a{
  width:9%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border:2px solid black;
  border-radius: 5px;
  background-color: #ffbee4;
  color: black;
}
.a:hover{
  width: 10%;
  font-weight: bold;
  color: #000079;
  text-decoration: underline;
}